const github.com/klauspost/compress/flate.maxMatchLength

16 uses

	github.com/klauspost/compress/flate (current package)
		deflate.go#L40: 	maxMatchLength   = 258 // The longest match for the compressor
		deflate.go#L96: 	hashMatch [maxMatchLength + minMatchLength]uint32
		deflate.go#L133: 	if s.index >= 2*windowSize-(minMatchLength+maxMatchLength) {
		deflate.go#L270: 	minMatchLook := min(lookahead, maxMatchLength)
		deflate.go#L415: 	if d.windowEnd-s.index < minMatchLength+maxMatchLength && !d.sync {
		deflate.go#L439: 		if lookahead < minMatchLength+maxMatchLength {
		deflate.go#L491: 			if prevLength < maxMatchLength-checkOff {
		deflate.go#L494: 					end := min(lookahead, maxMatchLength+checkOff)
		deflate.go#L509: 								if prevLength >= maxMatchLength || d.window[prevIndex+i] != d.window[ch2+i] {
		deflate.go#L550: 										if prevLength >= maxMatchLength || d.window[prevIndex+i] != d.window[ch2+i-1] {
		fast_encoder.go#L153: 	a := src[s:min(s+maxMatchLength-4, len(src))]
		level5.go#L189: 		} else if l == maxMatchLength {
		level5.go#L501: 		} else if l == maxMatchLength {
		level5.go#L680: 	s1 := min(int(s)+maxMatchLength-4, len(src))
		level6.go#L211: 		} else if l == maxMatchLength {
		token.go#L266: 		if xlength >= maxMatchLength+baseMatchLength {